home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1993 July / InfoMagic USENET CD-ROM July 1993.ISO / sources / misc / volume23 / ufc-crypt / part01 next >
Encoding:
Text File  |  1991-10-21  |  52.8 KB  |  1,314 lines

  1. Newsgroups: comp.sources.misc
  2. From: glad@daimi.aau.dk (Michael Glad)
  3. Subject:  v23i097:  ufc-crypt - fast crypt/fcrypt routines, Part01/02
  4. Message-ID: <csm-v23i097=ufc-crypt.205940@sparky.IMD.Sterling.COM>
  5. X-Md4-Signature: 3387aea353059bd744501a4755629015
  6. Date: Tue, 22 Oct 1991 02:00:28 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: glad@daimi.aau.dk (Michael Glad)
  10. Posting-number: Volume 23, Issue 97
  11. Archive-name: ufc-crypt/part01
  12. Environment: UNIX, 32BIT
  13.  
  14. As fast crypt implementations are now becoming easily available, I've decided
  15. to publish my own highly optimized crypt(3) & fcrypt compatible routines:
  16. UFC-crypt (UFC == ultra fast crypt).  This posting is almost identical to
  17. the ufc crypt routines posted to alt.sources a few weeks ago.
  18.  
  19. When doing many operations with the same salt (as is typically the case in
  20. password cracking programs as Alec Muffet's CRACK program), UFC-crypt is
  21. 25 - 45 times faster than crypt(3) depending on the machine.
  22. In the README file, unstructions are given how to plug UFC-crypt into CRACK.
  23.  
  24. UFC-crypt has been tested on SUN3/4/386, HP 9000 series 300/400/700/800,
  25. IBM RS/6000 and DEC MIPS systems.
  26.  
  27. UFC-crypt is covered by the GNU library license version 2.
  28.  
  29.     --- Michael
  30. ----
  31. #! /bin/sh
  32. # This is a shell archive.  Remove anything before this line, then feed it
  33. # into a shell via "sh file" or similar.  To overwrite existing files,
  34. # type "sh file -c".
  35. # The tool that generated this appeared in the comp.sources.unix newsgroup;
  36. # send mail to comp-sources-unix@uunet.uu.net if you want that tool.
  37. # Contents:  README COPYING S2o crypt_util.c
  38. # Wrapped by kent@sparky on Wed Oct 16 15:47:00 1991
  39. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  40. echo If this archive is complete, you will see the following message:
  41. echo '          "shar: End of archive 1 (of 2)."'
  42. if test -f 'README' -a "${1}" != "-c" ; then 
  43.   echo shar: Will not clobber existing file \"'README'\"
  44. else
  45.   echo shar: Extracting \"'README'\" \(4471 characters\)
  46.   sed "s/^X//" >'README' <<'END_OF_FILE'
  47. X
  48. X
  49. X    UFC-crypt: ultra fast 'crypt' implementation
  50. X    ============================================
  51. X
  52. X    @(#)README    2.3 10/04/91
  53. X
  54. XDesign goals/non goals:
  55. X-----------------------
  56. X
  57. X- Crypt implementation plugin compatible with crypt(3)/fcrypt
  58. X
  59. X- Extremely high performance when used for password cracking.
  60. X
  61. X- Portable to most 32 bit machines
  62. X
  63. X- Startup time/mixed salt performance not critical
  64. X
  65. XFeatures of the implementation:
  66. X------------------------------
  67. X
  68. X- Runs 25-45 times faster than crypt(3) when invoked repeated
  69. X  times with the same salt and varying passwords.
  70. X  With alternating salts, performance is only about 4 times
  71. X  that of crypt(3).
  72. X
  73. X- Tested on 68000,386,SPARC,MIPS,HP-PA and RS/6000 systems
  74. X
  75. X- Requires 280 kb for tables.
  76. X
  77. XAuthor & licensing etc
  78. X----------------------
  79. X
  80. XUFC-crypt is written by Michael Glad, email: glad@daimi.aau.dk.
  81. XIt is covered by the GNU library license version 2, see the file 'COPYING'.
  82. X
  83. XInstalling
  84. X----------
  85. X
  86. XEdit the Makefile setting the variables
  87. X
  88. XCRYPT:    The encryption module to use; crypt.o should always work.
  89. X        If running on one of the machines for which special support
  90. X    is available, select the appropriate module.
  91. XFL:     If your OS does not have the routines bcopy/bzero in libc,
  92. X    try '-DSYSV'.
  93. X
  94. XCC:    The compiler to use
  95. X
  96. XOFLAG:    The highest level of optimization available
  97. X
  98. XNow run 'make'. The files 'ufc' and 'libufa.c' are produced.
  99. XTry 'ufc <number>' to test proper operation and to do benchmarks.
  100. XIf you link 'ufc' without 'libufc.a' you can benchmark your crypt(3).
  101. X
  102. X'libufc.a' can be linked into your applications. It is compatible with
  103. Xboth crypt(3) and the fcrypt shipped with Alec Muffett's Crack program.
  104. X
  105. XFor use in Crack: in 'Sources/Makefile', substitute crack-fcrypt.o with
  106. Xa path to libufc.a in the CRACKMOD declaration. For benchmarking, use
  107. Xthe 'speedcrypt' program in the same directory.
  108. X
  109. XBenchmark table:
  110. X---------------
  111. X
  112. XIf special assembly language support was used, the machine name is marked
  113. Xwith '*'. Times are in milliseconds, a line gives how many encryptions UFC-crypt
  114. Xcan perform per second on the various architectures.
  115. X
  116. X|----------|---------------------------------------------|
  117. X|Machine   |  SUN*  SUN*   HP*      DIGITAL       HP     |
  118. X|          | 3/50   ELC  9000/425e DecStation   9000/720 |
  119. X|----------|---------------------------------------------|
  120. X| Crypt(3) |  230    37    60         38          17     |
  121. X| Ufc      |  5.2   1.5   1.4        1.2         0,36    |
  122. X| Ufc/sec  |  190   670   715        830         2700    |
  123. X|----------|---------------------------------------------|
  124. X| Speedup  |   45    25    43         32           47    |
  125. X|----------|---------------------------------------------|
  126. X
  127. XIt seems as if performance is limited by CPU bus and data cache capacity. 
  128. XE.g. on a SUN4, UFC-crypt reads almost 10 mb/sec into the CPU
  129. Xregisters. As 128kb of memory are swept during an encryption, it may also
  130. Xmisbehave with datacaches.
  131. X
  132. XOptimizations:
  133. X-------------
  134. X
  135. XHere are the optimizations used relative to an ordinary implementation
  136. Xsuch as the one said to be used in crypt(3).
  137. X
  138. XMajor optimizations
  139. X*******************
  140. X
  141. X- Keep data packed as bits in integer variables -- allows for
  142. X  fast permutations & parallel xor's in CPU hardware.
  143. X
  144. X- Let adjacent final & initial permutations collapse.
  145. X
  146. X- Keep working data in 'E expanded' format all the time.
  147. X
  148. X- Implement DES 'f' function mostly by table lookup
  149. X
  150. X- Calculate the above function on 12 bit basis rather than 6
  151. X  as would be the most natural. This eats core for tables
  152. X  but it's critical for performance.
  153. X
  154. X- Implement setup routines so that performance is limited by the DES
  155. X  inner loops only. At the moment the key calculation routine accounts for
  156. X  a rather unavoidable 16% of the CPU usage.
  157. X
  158. XMinor (dirty) optimizations
  159. X***************************
  160. X
  161. X- combine iterations of DES inner loop so that DES only loops
  162. X  8 times. This saves a lot of variable swapping.
  163. X
  164. X- Implement key access by a walking pointer rather than coding
  165. X  as array indexing.
  166. X
  167. X- As described, the table based f function uses a 3 dimensional array:
  168. X
  169. X    sb ['number of 12 bit segment']['12 bit index']['48 bit half index']
  170. X
  171. X  Code the routine with 4 (one dimensional) vectors.
  172. X
  173. X- Design the internal data format & uglify the DES loops so that
  174. X  the compiler does not need to do bit shifts when indexing vectors.
  175. X
  176. X- For selected architectures, code the quite little crypt function itself 
  177. X  in assembly language but keep the support routines in C.
  178. X
  179. END_OF_FILE
  180.   if test 4471 -ne `wc -c <'README'`; then
  181.     echo shar: \"'README'\" unpacked with wrong size!
  182.   fi
  183.   # end of 'README'
  184. fi
  185. if test -f 'COPYING' -a "${1}" != "-c" ; then 
  186.   echo shar: Will not clobber existing file \"'COPYING'\"
  187. else
  188.   echo shar: Extracting \"'COPYING'\" \(25265 characters\)
  189.   sed "s/^X//" >'COPYING' <<'END_OF_FILE'
  190. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  191. X               Version 2, June 1991
  192. X
  193. X Copyright (C) 1991 Free Software Foundation, Inc.
  194. X                    675 Mass Ave, Cambridge, MA 02139, USA
  195. X Everyone is permitted to copy and distribute verbatim copies
  196. X of this license document, but changing it is not allowed.
  197. X
  198. X[This is the first released version of the library GPL.  It is
  199. X numbered 2 because it goes with version 2 of the ordinary GPL.]
  200. X
  201. X                Preamble
  202. X
  203. X  The licenses for most software are designed to take away your
  204. Xfreedom to share and change it.  By contrast, the GNU General Public
  205. XLicenses are intended to guarantee your freedom to share and change
  206. Xfree software--to make sure the software is free for all its users.
  207. X
  208. X  This license, the Library General Public License, applies to some
  209. Xspecially designated Free Software Foundation software, and to any
  210. Xother libraries whose authors decide to use it.  You can use it for
  211. Xyour libraries, too.
  212. X
  213. X  When we speak of free software, we are referring to freedom, not
  214. Xprice.  Our General Public Licenses are designed to make sure that you
  215. Xhave the freedom to distribute copies of free software (and charge for
  216. Xthis service if you wish), that you receive source code or can get it
  217. Xif you want it, that you can change the software or use pieces of it
  218. Xin new free programs; and that you know you can do these things.
  219. X
  220. X  To protect your rights, we need to make restrictions that forbid
  221. Xanyone to deny you these rights or to ask you to surrender the rights.
  222. XThese restrictions translate to certain responsibilities for you if
  223. Xyou distribute copies of the library, or if you modify it.
  224. X
  225. X  For example, if you distribute copies of the library, whether gratis
  226. Xor for a fee, you must give the recipients all the rights that we gave
  227. Xyou.  You must make sure that they, too, receive or can get the source
  228. Xcode.  If you link a program with the library, you must provide
  229. Xcomplete object files to the recipients so that they can relink them
  230. Xwith the library, after making changes to the library and recompiling
  231. Xit.  And you must show them these terms so they know their rights.
  232. X
  233. X  Our method of protecting your rights has two steps: (1) copyright
  234. Xthe library, and (2) offer you this license which gives you legal
  235. Xpermission to copy, distribute and/or modify the library.
  236. X
  237. X  Also, for each distributor's protection, we want to make certain
  238. Xthat everyone understands that there is no warranty for this free
  239. Xlibrary.  If the library is modified by someone else and passed on, we
  240. Xwant its recipients to know that what they have is not the original
  241. Xversion, so that any problems introduced by others will not reflect on
  242. Xthe original authors' reputations.
  243. X
  244. X  Finally, any free program is threatened constantly by software
  245. Xpatents.  We wish to avoid the danger that companies distributing free
  246. Xsoftware will individually obtain patent licenses, thus in effect
  247. Xtransforming the program into proprietary software.  To prevent this,
  248. Xwe have made it clear that any patent must be licensed for everyone's
  249. Xfree use or not licensed at all.
  250. X
  251. X  Most GNU software, including some libraries, is covered by the ordinary
  252. XGNU General Public License, which was designed for utility programs.  This
  253. Xlicense, the GNU Library General Public License, applies to certain
  254. Xdesignated libraries.  This license is quite different from the ordinary
  255. Xone; be sure to read it in full, and don't assume that anything in it is
  256. Xthe same as in the ordinary license.
  257. X
  258. X  The reason we have a separate public license for some libraries is that
  259. Xthey blur the distinction we usually make between modifying or adding to a
  260. Xprogram and simply using it.  Linking a program with a library, without
  261. Xchanging the library, is in some sense simply using the library, and is
  262. Xanalogous to running a utility program or application program.  However, in
  263. Xa textual and legal sense, the linked executable is a combined work, a
  264. Xderivative of the original library, and the ordinary General Public License
  265. Xtreats it as such.
  266. X
  267. X  Because of this blurred distinction, using the ordinary General
  268. XPublic License for libraries did not effectively promote software
  269. Xsharing, because most developers did not use the libraries.  We
  270. Xconcluded that weaker conditions might promote sharing better.
  271. X
  272. X  However, unrestricted linking of non-free programs would deprive the
  273. Xusers of those programs of all benefit from the free status of the
  274. Xlibraries themselves.  This Library General Public License is intended to
  275. Xpermit developers of non-free programs to use free libraries, while
  276. Xpreserving your freedom as a user of such programs to change the free
  277. Xlibraries that are incorporated in them.  (We have not seen how to achieve
  278. Xthis as regards changes in header files, but we have achieved it as regards
  279. Xchanges in the actual functions of the Library.)  The hope is that this
  280. Xwill lead to faster development of free libraries.
  281. X
  282. X  The precise terms and conditions for copying, distribution and
  283. Xmodification follow.  Pay close attention to the difference between a
  284. X"work based on the library" and a "work that uses the library".  The
  285. Xformer contains code derived from the library, while the latter only
  286. Xworks together with the library.
  287. X
  288. X  Note that it is possible for a library to be covered by the ordinary
  289. XGeneral Public License rather than by this special one.
  290. X
  291. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  292. X   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  293. X
  294. X  0. This License Agreement applies to any software library which
  295. Xcontains a notice placed by the copyright holder or other authorized
  296. Xparty saying it may be distributed under the terms of this Library
  297. XGeneral Public License (also called "this License").  Each licensee is
  298. Xaddressed as "you".
  299. X
  300. X  A "library" means a collection of software functions and/or data
  301. Xprepared so as to be conveniently linked with application programs
  302. X(which use some of those functions and data) to form executables.
  303. X
  304. X  The "Library", below, refers to any such software library or work
  305. Xwhich has been distributed under these terms.  A "work based on the
  306. XLibrary" means either the Library or any derivative work under
  307. Xcopyright law: that is to say, a work containing the Library or a
  308. Xportion of it, either verbatim or with modifications and/or translated
  309. Xstraightforwardly into another language.  (Hereinafter, translation is
  310. Xincluded without limitation in the term "modification".)
  311. X
  312. X  "Source code" for a work means the preferred form of the work for
  313. Xmaking modifications to it.  For a library, complete source code means
  314. Xall the source code for all modules it contains, plus any associated
  315. Xinterface definition files, plus the scripts used to control compilation
  316. Xand installation of the library.
  317. X
  318. X  Activities other than copying, distribution and modification are not
  319. Xcovered by this License; they are outside its scope.  The act of
  320. Xrunning a program using the Library is not restricted, and output from
  321. Xsuch a program is covered only if its contents constitute a work based
  322. Xon the Library (independent of the use of the Library in a tool for
  323. Xwriting it).  Whether that is true depends on what the Library does
  324. Xand what the program that uses the Library does.
  325. X  
  326. X  1. You may copy and distribute verbatim copies of the Library's
  327. Xcomplete source code as you receive it, in any medium, provided that
  328. Xyou conspicuously and appropriately publish on each copy an
  329. Xappropriate copyright notice and disclaimer of warranty; keep intact
  330. Xall the notices that refer to this License and to the absence of any
  331. Xwarranty; and distribute a copy of this License along with the
  332. XLibrary.
  333. X
  334. X  You may charge a fee for the physical act of transferring a copy,
  335. Xand you may at your option offer warranty protection in exchange for a
  336. Xfee.
  337. X
  338. X  2. You may modify your copy or copies of the Library or any portion
  339. Xof it, thus forming a work based on the Library, and copy and
  340. Xdistribute such modifications or work under the terms of Section 1
  341. Xabove, provided that you also meet all of these conditions:
  342. X
  343. X    a) The modified work must itself be a software library.
  344. X
  345. X    b) You must cause the files modified to carry prominent notices
  346. X    stating that you changed the files and the date of any change.
  347. X
  348. X    c) You must cause the whole of the work to be licensed at no
  349. X    charge to all third parties under the terms of this License.
  350. X
  351. X    d) If a facility in the modified Library refers to a function or a
  352. X    table of data to be supplied by an application program that uses
  353. X    the facility, other than as an argument passed when the facility
  354. X    is invoked, then you must make a good faith effort to ensure that,
  355. X    in the event an application does not supply such function or
  356. X    table, the facility still operates, and performs whatever part of
  357. X    its purpose remains meaningful.
  358. X
  359. X    (For example, a function in a library to compute square roots has
  360. X    a purpose that is entirely well-defined independent of the
  361. X    application.  Therefore, Subsection 2d requires that any
  362. X    application-supplied function or table used by this function must
  363. X    be optional: if the application does not supply it, the square
  364. X    root function must still compute square roots.)
  365. X
  366. XThese requirements apply to the modified work as a whole.  If
  367. Xidentifiable sections of that work are not derived from the Library,
  368. Xand can be reasonably considered independent and separate works in
  369. Xthemselves, then this License, and its terms, do not apply to those
  370. Xsections when you distribute them as separate works.  But when you
  371. Xdistribute the same sections as part of a whole which is a work based
  372. Xon the Library, the distribution of the whole must be on the terms of
  373. Xthis License, whose permissions for other licensees extend to the
  374. Xentire whole, and thus to each and every part regardless of who wrote
  375. Xit.
  376. X
  377. XThus, it is not the intent of this section to claim rights or contest
  378. Xyour rights to work written entirely by you; rather, the intent is to
  379. Xexercise the right to control the distribution of derivative or
  380. Xcollective works based on the Library.
  381. X
  382. XIn addition, mere aggregation of another work not based on the Library
  383. Xwith the Library (or with a work based on the Library) on a volume of
  384. Xa storage or distribution medium does not bring the other work under
  385. Xthe scope of this License.
  386. X
  387. X  3. You may opt to apply the terms of the ordinary GNU General Public
  388. XLicense instead of this License to a given copy of the Library.  To do
  389. Xthis, you must alter all the notices that refer to this License, so
  390. Xthat they refer to the ordinary GNU General Public License, version 2,
  391. Xinstead of to this License.  (If a newer version than version 2 of the
  392. Xordinary GNU General Public License has appeared, then you can specify
  393. Xthat version instead if you wish.)  Do not make any other change in
  394. Xthese notices.
  395. X
  396. X  Once this change is made in a given copy, it is irreversible for
  397. Xthat copy, so the ordinary GNU General Public License applies to all
  398. Xsubsequent copies and derivative works made from that copy.
  399. X
  400. X  This option is useful when you wish to copy part of the code of
  401. Xthe Library into a program that is not a library.
  402. X
  403. X  4. You may copy and distribute the Library (or a portion or
  404. Xderivative of it, under Section 2) in object code or executable form
  405. Xunder the terms of Sections 1 and 2 above provided that you accompany
  406. Xit with the complete corresponding machine-readable source code, which
  407. Xmust be distributed under the terms of Sections 1 and 2 above on a
  408. Xmedium customarily used for software interchange.
  409. X
  410. X  If distribution of object code is made by offering access to copy
  411. Xfrom a designated place, then offering equivalent access to copy the
  412. Xsource code from the same place satisfies the requirement to
  413. Xdistribute the source code, even though third parties are not
  414. Xcompelled to copy the source along with the object code.
  415. X
  416. X  5. A program that contains no derivative of any portion of the
  417. XLibrary, but is designed to work with the Library by being compiled or
  418. Xlinked with it, is called a "work that uses the Library".  Such a
  419. Xwork, in isolation, is not a derivative work of the Library, and
  420. Xtherefore falls outside the scope of this License.
  421. X
  422. X  However, linking a "work that uses the Library" with the Library
  423. Xcreates an executable that is a derivative of the Library (because it
  424. Xcontains portions of the Library), rather than a "work that uses the
  425. Xlibrary".  The executable is therefore covered by this License.
  426. XSection 6 states terms for distribution of such executables.
  427. X
  428. X  When a "work that uses the Library" uses material from a header file
  429. Xthat is part of the Library, the object code for the work may be a
  430. Xderivative work of the Library even though the source code is not.
  431. XWhether this is true is especially significant if the work can be
  432. Xlinked without the Library, or if the work is itself a library.  The
  433. Xthreshold for this to be true is not precisely defined by law.
  434. X
  435. X  If such an object file uses only numerical parameters, data
  436. Xstructure layouts and accessors, and small macros and small inline
  437. Xfunctions (ten lines or less in length), then the use of the object
  438. Xfile is unrestricted, regardless of whether it is legally a derivative
  439. Xwork.  (Executables containing this object code plus portions of the
  440. XLibrary will still fall under Section 6.)
  441. X
  442. X  Otherwise, if the work is a derivative of the Library, you may
  443. Xdistribute the object code for the work under the terms of Section 6.
  444. XAny executables containing that work also fall under Section 6,
  445. Xwhether or not they are linked directly with the Library itself.
  446. X
  447. X  6. As an exception to the Sections above, you may also compile or
  448. Xlink a "work that uses the Library" with the Library to produce a
  449. Xwork containing portions of the Library, and distribute that work
  450. Xunder terms of your choice, provided that the terms permit
  451. Xmodification of the work for the customer's own use and reverse
  452. Xengineering for debugging such modifications.
  453. X
  454. X  You must give prominent notice with each copy of the work that the
  455. XLibrary is used in it and that the Library and its use are covered by
  456. Xthis License.  You must supply a copy of this License.  If the work
  457. Xduring execution displays copyright notices, you must include the
  458. Xcopyright notice for the Library among them, as well as a reference
  459. Xdirecting the user to the copy of this License.  Also, you must do one
  460. Xof these things:
  461. X
  462. X    a) Accompany the work with the complete corresponding
  463. X    machine-readable source code for the Library including whatever
  464. X    changes were used in the work (which must be distributed under
  465. X    Sections 1 and 2 above); and, if the work is an executable linked
  466. X    with the Library, with the complete machine-readable "work that
  467. X    uses the Library", as object code and/or source code, so that the
  468. X    user can modify the Library and then relink to produce a modified
  469. X    executable containing the modified Library.  (It is understood
  470. X    that the user who changes the contents of definitions files in the
  471. X    Library will not necessarily be able to recompile the application
  472. X    to use the modified definitions.)
  473. X
  474. X    b) Accompany the work with a written offer, valid for at
  475. X    least three years, to give the same user the materials
  476. X    specified in Subsection 6a, above, for a charge no more
  477. X    than the cost of performing this distribution.
  478. X
  479. X    c) If distribution of the work is made by offering access to copy
  480. X    from a designated place, offer equivalent access to copy the above
  481. X    specified materials from the same place.
  482. X
  483. X    d) Verify that the user has already received a copy of these
  484. X    materials or that you have already sent this user a copy.
  485. X
  486. X  For an executable, the required form of the "work that uses the
  487. XLibrary" must include any data and utility programs needed for
  488. Xreproducing the executable from it.  However, as a special exception,
  489. Xthe source code distributed need not include anything that is normally
  490. Xdistributed (in either source or binary form) with the major
  491. Xcomponents (compiler, kernel, and so on) of the operating system on
  492. Xwhich the executable runs, unless that component itself accompanies
  493. Xthe executable.
  494. X
  495. X  It may happen that this requirement contradicts the license
  496. Xrestrictions of other proprietary libraries that do not normally
  497. Xaccompany the operating system.  Such a contradiction means you cannot
  498. Xuse both them and the Library together in an executable that you
  499. Xdistribute.
  500. X
  501. X  7. You may place library facilities that are a work based on the
  502. XLibrary side-by-side in a single library together with other library
  503. Xfacilities not covered by this License, and distribute such a combined
  504. Xlibrary, provided that the separate distribution of the work based on
  505. Xthe Library and of the other library facilities is otherwise
  506. Xpermitted, and provided that you do these two things:
  507. X
  508. X    a) Accompany the combined library with a copy of the same work
  509. X    based on the Library, uncombined with any other library
  510. X    facilities.  This must be distributed under the terms of the
  511. X    Sections above.
  512. X
  513. X    b) Give prominent notice with the combined library of the fact
  514. X    that part of it is a work based on the Library, and explaining
  515. X    where to find the accompanying uncombined form of the same work.
  516. X
  517. X  8. You may not copy, modify, sublicense, link with, or distribute
  518. Xthe Library except as expressly provided under this License.  Any
  519. Xattempt otherwise to copy, modify, sublicense, link with, or
  520. Xdistribute the Library is void, and will automatically terminate your
  521. Xrights under this License.  However, parties who have received copies,
  522. Xor rights, from you under this License will not have their licenses
  523. Xterminated so long as such parties remain in full compliance.
  524. X
  525. X  9. You are not required to accept this License, since you have not
  526. Xsigned it.  However, nothing else grants you permission to modify or
  527. Xdistribute the Library or its derivative works.  These actions are
  528. Xprohibited by law if you do not accept this License.  Therefore, by
  529. Xmodifying or distributing the Library (or any work based on the
  530. XLibrary), you indicate your acceptance of this License to do so, and
  531. Xall its terms and conditions for copying, distributing or modifying
  532. Xthe Library or works based on it.
  533. X
  534. X  10. Each time you redistribute the Library (or any work based on the
  535. XLibrary), the recipient automatically receives a license from the
  536. Xoriginal licensor to copy, distribute, link with or modify the Library
  537. Xsubject to these terms and conditions.  You may not impose any further
  538. Xrestrictions on the recipients' exercise of the rights granted herein.
  539. XYou are not responsible for enforcing compliance by third parties to
  540. Xthis License.
  541. X
  542. X  11. If, as a consequence of a court judgment or allegation of patent
  543. Xinfringement or for any other reason (not limited to patent issues),
  544. Xconditions are imposed on you (whether by court order, agreement or
  545. Xotherwise) that contradict the conditions of this License, they do not
  546. Xexcuse you from the conditions of this License.  If you cannot
  547. Xdistribute so as to satisfy simultaneously your obligations under this
  548. XLicense and any other pertinent obligations, then as a consequence you
  549. Xmay not distribute the Library at all.  For example, if a patent
  550. Xlicense would not permit royalty-free redistribution of the Library by
  551. Xall those who receive copies directly or indirectly through you, then
  552. Xthe only way you could satisfy both it and this License would be to
  553. Xrefrain entirely from distribution of the Library.
  554. X
  555. XIf any portion of this section is held invalid or unenforceable under any
  556. Xparticular circumstance, the balance of the section is intended to apply,
  557. Xand the section as a whole is intended to apply in other circumstances.
  558. X
  559. XIt is not the purpose of this section to induce you to infringe any
  560. Xpatents or other property right claims or to contest validity of any
  561. Xsuch claims; this section has the sole purpose of protecting the
  562. Xintegrity of the free software distribution system which is
  563. Ximplemented by public license practices.  Many people have made
  564. Xgenerous contributions to the wide range of software distributed
  565. Xthrough that system in reliance on consistent application of that
  566. Xsystem; it is up to the author/donor to decide if he or she is willing
  567. Xto distribute software through any other system and a licensee cannot
  568. Ximpose that choice.
  569. X
  570. XThis section is intended to make thoroughly clear what is believed to
  571. Xbe a consequence of the rest of this License.
  572. X
  573. X  12. If the distribution and/or use of the Library is restricted in
  574. Xcertain countries either by patents or by copyrighted interfaces, the
  575. Xoriginal copyright holder who places the Library under this License may add
  576. Xan explicit geographical distribution limitation excluding those countries,
  577. Xso that distribution is permitted only in or among countries not thus
  578. Xexcluded.  In such case, this License incorporates the limitation as if
  579. Xwritten in the body of this License.
  580. X
  581. X  13. The Free Software Foundation may publish revised and/or new
  582. Xversions of the Library General Public License from time to time.
  583. XSuch new versions will be similar in spirit to the present version,
  584. Xbut may differ in detail to address new problems or concerns.
  585. X
  586. XEach version is given a distinguishing version number.  If the Library
  587. Xspecifies a version number of this License which applies to it and
  588. X"any later version", you have the option of following the terms and
  589. Xconditions either of that version or of any later version published by
  590. Xthe Free Software Foundation.  If the Library does not specify a
  591. Xlicense version number, you may choose any version ever published by
  592. Xthe Free Software Foundation.
  593. X
  594. X  14. If you wish to incorporate parts of the Library into other free
  595. Xprograms whose distribution conditions are incompatible with these,
  596. Xwrite to the author to ask for permission.  For software which is
  597. Xcopyrighted by the Free Software Foundation, write to the Free
  598. XSoftware Foundation; we sometimes make exceptions for this.  Our
  599. Xdecision will be guided by the two goals of preserving the free status
  600. Xof all derivatives of our free software and of promoting the sharing
  601. Xand reuse of software generally.
  602. X
  603. X                NO WARRANTY
  604. X
  605. X  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  606. XWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  607. XEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  608. XOTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  609. XKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  610. XIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  611. XPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  612. XLIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  613. XTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  614. X
  615. X  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  616. XWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  617. XAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  618. XFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  619. XCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  620. XLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  621. XRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  622. XFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  623. XSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  624. XDAMAGES.
  625. X
  626. X             END OF TERMS AND CONDITIONS
  627. X
  628. X     Appendix: How to Apply These Terms to Your New Libraries
  629. X
  630. X  If you develop a new library, and you want it to be of the greatest
  631. Xpossible use to the public, we recommend making it free software that
  632. Xeveryone can redistribute and change.  You can do so by permitting
  633. Xredistribution under these terms (or, alternatively, under the terms of the
  634. Xordinary General Public License).
  635. X
  636. X  To apply these terms, attach the following notices to the library.  It is
  637. Xsafest to attach them to the start of each source file to most effectively
  638. Xconvey the exclusion of warranty; and each file should have at least the
  639. X"copyright" line and a pointer to where the full notice is found.
  640. X
  641. X    <one line to give the library's name and a brief idea of what it does.>
  642. X    Copyright (C) <year>  <name of author>
  643. X
  644. X    This library is free software; you can redistribute it and/or
  645. X    modify it under the terms of the GNU Library General Public
  646. X    License as published by the Free Software Foundation; either
  647. X    version 2 of the License, or (at your option) any later version.
  648. X
  649. X    This library is distributed in the hope that it will be useful,
  650. X    but WITHOUT ANY WARRANTY; without even the implied warranty of
  651. X    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  652. X    Library General Public License for more details.
  653. X
  654. X    You should have received a copy of the GNU Library General Public
  655. X    License along with this library; if not, write to the Free
  656. X    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  657. X
  658. XAlso add information on how to contact you by electronic and paper mail.
  659. X
  660. XYou should also get your employer (if you work as a programmer) or your
  661. Xschool, if any, to sign a "copyright disclaimer" for the library, if
  662. Xnecessary.  Here is a sample; alter the names:
  663. X
  664. X  Yoyodyne, Inc., hereby disclaims all copyright interest in the
  665. X  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  666. X
  667. X  <signature of Ty Coon>, 1 April 1990
  668. X  Ty Coon, President of Vice
  669. X
  670. XThat's all there is to it!
  671. END_OF_FILE
  672.   if test 25265 -ne `wc -c <'COPYING'`; then
  673.     echo shar: \"'COPYING'\" unpacked with wrong size!
  674.   fi
  675.   # end of 'COPYING'
  676. fi
  677. if test -f 'S2o' -a "${1}" != "-c" ; then 
  678.   echo shar: Will not clobber existing file \"'S2o'\"
  679. else
  680.   echo shar: Extracting \"'S2o'\" \(969 characters\)
  681.   sed "s/^X//" >'S2o' <<'END_OF_FILE'
  682. X#!/bin/csh -f
  683. X
  684. X# UFC-crypt: ultra fast crypt(3) implementation
  685. X# Copyright (C) 1991, Michael Glad, email: glad@daimi.aau.dk
  686. X#
  687. X# This library is free software; you can redistribute it and/or
  688. X# modify it under the terms of the GNU Library General Public
  689. X# License as published by the Free Software Foundation; either
  690. X# version 2 of the License, or (at your option) any later version.
  691. X#
  692. X# This library is distributed in the hope that it will be useful,
  693. X# but WITHOUT ANY WARRANTY; without even the implied warranty of
  694. X# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  695. X# Library General Public License for more details.
  696. X#
  697. X# You should have received a copy of the GNU Library General Public
  698. X# License along with this library; if not, write to the Free
  699. X# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  700. X#
  701. X# @(#)S2o    2.2 10/04/91
  702. X#
  703. X# Preprocessor compiling .S files into .o files
  704. X#
  705. X
  706. X/lib/cpp -P $1 | tr \; '\012' > ./tmp.s
  707. Xas ./tmp.s -o $2
  708. END_OF_FILE
  709.   if test 969 -ne `wc -c <'S2o'`; then
  710.     echo shar: \"'S2o'\" unpacked with wrong size!
  711.   fi
  712.   chmod +x 'S2o'
  713.   # end of 'S2o'
  714. fi
  715. if test -f 'crypt_util.c' -a "${1}" != "-c" ; then 
  716.   echo shar: Will not clobber existing file \"'crypt_util.c'\"
  717. else
  718.   echo shar: Extracting \"'crypt_util.c'\" \(18287 characters\)
  719.   sed "s/^X//" >'crypt_util.c' <<'END_OF_FILE'
  720. X/*
  721. X * UFC-crypt: ultra fast crypt(3) implementation
  722. X *
  723. X * Copyright (C) 1991, Michael Glad, email: glad@daimi.aau.dk
  724. X *
  725. X * This library is free software; you can redistribute it and/or
  726. X * modify it under the terms of the GNU Library General Public
  727. X * License as published by the Free Software Foundation; either
  728. X * version 2 of the License, or (at your option) any later version.
  729. X *
  730. X * This library is distributed in the hope that it will be useful,
  731. X * but WITHOUT ANY WARRANTY; without even the implied warranty of
  732. X * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  733. X * Library General Public License for more details.
  734. X *
  735. X * You should have received a copy of the GNU Library General Public
  736. X * License along with this library; if not, write to the Free
  737. X * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  738. X *
  739. X * @(#)crypt_util.c    2.2 10/04/91
  740. X *
  741. X * Support routines
  742. X *
  743. X */
  744. X
  745. X#ifdef DEBUG
  746. X#include <stdio.h>
  747. X#endif
  748. X
  749. X#include "patchlevel.h"
  750. X
  751. X#ifdef SYSV
  752. X#define bzero(addr, cnt)     memset(addr, 0, cnt)
  753. X#define bcopy(from, to, len) memcpy(to, from, len)
  754. X#endif
  755. X
  756. X/* Permutation done once on the 56 bit 
  757. X   key derived from the original 8 byte ASCII key.
  758. X*/
  759. Xstatic unsigned long pc1[56] =
  760. X  { 57, 49, 41, 33, 25, 17,  9,  1, 58, 50, 42, 34, 26, 18,
  761. X    10,  2, 59, 51, 43, 35, 27, 19, 11,  3, 60, 52, 44, 36,
  762. X    63, 55, 47, 39, 31, 23, 15,  7, 62, 54, 46, 38, 30, 22,
  763. X    14,  6, 61, 53, 45, 37, 29, 21, 13,  5, 28, 20, 12,  4
  764. X  };
  765. X
  766. X/* How much to rotate each 28 bit half of the pc1 permutated
  767. X   56 bit key before using pc2 to give the i' key
  768. X*/
  769. Xstatic unsigned long totrot[16] =
  770. X  { 1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28 };
  771. X
  772. X/* Permutation giving the key of the i' DES round */
  773. Xstatic unsigned long pc2[48] =
  774. X  { 14, 17, 11, 24,  1,  5,  3, 28, 15,  6, 21, 10,
  775. X    23, 19, 12,  4, 26,  8, 16,  7, 27, 20, 13,  2,
  776. X    41, 52, 31, 37, 47, 55, 30, 40, 51, 45, 33, 48,
  777. X    44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32
  778. X  };
  779. X
  780. X/* Reference copy of the expansion table which selects
  781. X   bits from the 32 bit intermediate result.
  782. X*/
  783. Xstatic unsigned long eref[48] =
  784. X  { 32,  1,  2,  3,  4,  5,  4,  5,  6,  7,  8,  9,
  785. X     8,  9, 10, 11, 12, 13, 12, 13, 14, 15, 16, 17,
  786. X    16, 17, 18, 19, 20, 21, 20, 21, 22, 23, 24, 25,
  787. X    24, 25, 26, 27, 28, 29, 28, 29, 30, 31, 32,  1
  788. X  };
  789. Xstatic unsigned long disturbed_e[48];
  790. Xstatic unsigned long e_inverse[64];
  791. X
  792. X/* Permutation done on the result of sbox lookups */
  793. Xstatic unsigned long perm32[32] = 
  794. X  { 16,  7, 20, 21, 29, 12, 28, 17,  1, 15, 23, 26,  5, 18, 31, 10,
  795. X     2,  8, 24, 14, 32, 27,  3,  9, 19, 13, 30,  6, 22, 11,  4, 25
  796. X  };
  797. X
  798. X/* The sboxes */
  799. Xstatic unsigned long sbox[8][4][16]=
  800. X      { { { 14,  4, 13,  1,  2, 15, 11,  8,  3, 10,  6, 12,  5,  9,  0,  7 },
  801. X          {  0, 15,  7,  4, 14,  2, 13,  1, 10,  6, 12, 11,  9,  5,  3,  8 },
  802. X          {  4,  1, 14,  8, 13,  6,  2, 11, 15, 12,  9,  7,  3, 10,  5,  0 },
  803. X          { 15, 12,  8,  2,  4,  9,  1,  7,  5, 11,  3, 14, 10,  0,  6, 13 }
  804. X        },
  805. X
  806. X        { { 15,  1,  8, 14,  6, 11,  3,  4,  9,  7,  2, 13, 12,  0,  5, 10 },
  807. X          {  3, 13,  4,  7, 15,  2,  8, 14, 12,  0,  1, 10,  6,  9, 11,  5 },
  808. X          {  0, 14,  7, 11, 10,  4, 13,  1,  5,  8, 12,  6,  9,  3,  2, 15 },
  809. X          { 13,  8, 10,  1,  3, 15,  4,  2, 11,  6,  7, 12,  0,  5, 14,  9 }
  810. X        },
  811. X
  812. X        { { 10,  0,  9, 14,  6,  3, 15,  5,  1, 13, 12,  7, 11,  4,  2,  8 },
  813. X          { 13,  7,  0,  9,  3,  4,  6, 10,  2,  8,  5, 14, 12, 11, 15,  1 },
  814. X          { 13,  6,  4,  9,  8, 15,  3,  0, 11,  1,  2, 12,  5, 10, 14,  7 },
  815. X          {  1, 10, 13,  0,  6,  9,  8,  7,  4, 15, 14,  3, 11,  5,  2, 12 }
  816. X        },
  817. X
  818. X        { {  7,  13, 14,  3,  0,  6,  9, 10,  1,  2,  8,  5, 11, 12,  4, 15 },
  819. X          { 13,  8,  11,  5,  6, 15,  0,  3,  4,  7,  2, 12,  1, 10, 14,  9 },
  820. X          { 10,  6,   9,  0, 12, 11,  7, 13, 15,  1,  3, 14,  5,  2,  8,  4 },
  821. X          {  3, 15,   0,  6, 10,  1, 13,  8,  9,  4,  5, 11, 12,  7,  2, 14 }
  822. X        },
  823. X
  824. X        { {  2, 12,   4,  1,  7, 10, 11,  6,  8,  5,  3, 15, 13,  0, 14,  9 },
  825. X          { 14, 11,   2, 12,  4,  7, 13,  1,  5,  0, 15, 10,  3,  9,  8,  6 },
  826. X          {  4,  2,   1, 11, 10, 13,  7,  8, 15,  9, 12,  5,  6,  3,  0, 14 },
  827. X          { 11,  8,  12,  7,  1, 14,  2, 13,  6, 15,  0,  9, 10,  4,  5,  3 }
  828. X        },
  829. X
  830. X        { { 12,  1, 10, 15,  9,  2,  6,  8,  0, 13,  3,  4, 14,  7,  5, 11 },
  831. X          { 10, 15,  4,  2,  7, 12,  9,  5,  6,  1, 13, 14,  0, 11,  3,  8 },
  832. X          {  9, 14, 15,  5,  2,  8, 12,  3,  7,  0,  4, 10,  1, 13, 11,  6 },
  833. X          {  4,  3,  2, 12,  9,  5, 15, 10, 11, 14,  1,  7,  6,  0,  8, 13 }
  834. X        },
  835. X
  836. X        { {  4, 11,  2, 14, 15,  0,  8, 13,  3, 12,  9,  7,  5, 10,  6,  1 },
  837. X          { 13,  0, 11,  7,  4,  9,  1, 10, 14,  3,  5, 12,  2, 15,  8,  6 },
  838. X          {  1,  4, 11, 13, 12,  3,  7, 14, 10, 15,  6,  8,  0,  5,  9,  2 },
  839. X          {  6, 11, 13,  8,  1,  4, 10,  7,  9,  5,  0, 15, 14,  2,  3, 12 }
  840. X        },
  841. X
  842. X        { { 13,  2,  8,  4,  6, 15, 11,  1, 10,  9,  3, 14,  5,  0, 12,  7 },
  843. X          {  1, 15, 13,  8, 10,  3,  7,  4, 12,  5,  6, 11,  0, 14,  9,  2 },
  844. X          {  7, 11, 4,   1,  9, 12, 14,  2,  0,  6, 10, 13, 15,  3,  5,  8 },
  845. X          {  2,  1, 14,  7,  4, 10,  8, 13, 15, 12,  9,  0,  3,  5,  6, 11 }
  846. X        }
  847. X      };
  848. X
  849. X#ifdef notdef
  850. X
  851. X/* This is the initial permutation matrix -- we have no
  852. X   use for it, but it is needed if you will develop
  853. X   this module into a general DES package.
  854. X*/
  855. Xstatic unsigned char inital_perm[64] = 
  856. X  { 58, 50, 42, 34, 26, 18, 10,  2, 60, 52, 44, 36, 28, 20, 12, 4,
  857. X    62, 54, 46, 38, 30, 22, 14,  6, 64, 56, 48, 40, 32, 24, 16, 8,
  858. X    57, 49, 41, 33, 25, 17,  9,  1, 59, 51, 43, 35, 27, 19, 11, 3,
  859. X    61, 53, 45, 37, 29, 21, 13,  5, 63, 55, 47, 39, 31, 23, 15, 7
  860. X  };
  861. X
  862. X#endif
  863. X
  864. X/* Final permutation matrix -- not used directly */
  865. Xstatic unsigned char final_perm[64] =
  866. X  { 40,  8, 48, 16, 56, 24, 64, 32, 39,  7, 47, 15, 55, 23, 63, 31,
  867. X    38,  6, 46, 14, 54, 22, 62, 30, 37,  5, 45, 13, 53, 21, 61, 29,
  868. X    36,  4, 44, 12, 52, 20, 60, 28, 35,  3, 43, 11, 51, 19, 59, 27,
  869. X    34,  2, 42, 10, 50, 18, 58, 26, 33,  1, 41,  9, 49, 17, 57, 25
  870. X  };
  871. X
  872. X/* The 16 DES keys in BITMASK format */
  873. Xunsigned long keytab[16][2];
  874. X
  875. X#define ascii_to_bin(c) ((c)>='a'?(c-59):(c)>='A'?((c)-53):(c)-'.')
  876. X#define bin_to_ascii(c) ((c)>=38?((c)-38+'a'):(c)>=12?((c)-12+'A'):(c)+'.')
  877. X
  878. X/* Macro to set a bit (0..23) */
  879. X#define BITMASK(i) ( (1<<(11-(i)%12+3)) << ((i)<12?16:0) )
  880. X
  881. X/* sb arrays:
  882. X
  883. X   Workhorses of the inner loop of the DES implementation.
  884. X   They do sbox lookup, shifting of this  value, 32 bit
  885. X   permutation and E permutation for the next round.
  886. X
  887. X   Kept in 'BITMASK' format.
  888. X
  889. X*/
  890. X
  891. Xunsigned long sb0[8192],sb1[8192],sb2[8192],sb3[8192];
  892. Xstatic unsigned long *sb[4] = {sb0,sb1,sb2,sb3}; 
  893. X
  894. X/* eperm32tab: do 32 bit permutation and E selection
  895. X
  896. X   The first index is the byte number in the 32 bit value to be permuted
  897. X    -  second  -   is the value of this byte
  898. X    -  third   -   selects the two 32 bit values
  899. X
  900. X    The table is used and generated internally in init_des to speed it up
  901. X
  902. X*/
  903. Xstatic unsigned long eperm32tab[4][256][2];
  904. X
  905. X/* mk_keytab_table: fast way of generating keytab from ASCII key
  906. X
  907. X   The first  index is the byte number in the 8 byte ASCII key
  908. X    -  second   -    -  -  current DES round i.e. the key number
  909. X    -  third    -   distinguishes between the two 24 bit halfs of
  910. X                    the selected key
  911. X    -  fourth   -   selects the 7 bits actually used of each byte
  912. X
  913. X   The table is kept in the format generated by the BITMASK macro
  914. X
  915. X*/
  916. Xstatic unsigned long mk_keytab_table[8][16][2][128];
  917. X
  918. X
  919. X/* efp: undo an extra e selection and do final
  920. X        permutation giving the DES result.
  921. X  
  922. X        Invoked 6 bit a time on two 48 bit values
  923. X        giving two 32 bit longs.
  924. X*/
  925. Xstatic unsigned long efp[16][64][2];
  926. X
  927. X
  928. Xstatic unsigned char bytemask[8]  =
  929. X  { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
  930. X
  931. X
  932. Xstatic unsigned long longmask[32] = 
  933. X  { 0x80000000, 0x40000000, 0x20000000, 0x10000000,
  934. X    0x08000000, 0x04000000, 0x02000000, 0x01000000,
  935. X    0x00800000, 0x00400000, 0x00200000, 0x00100000,
  936. X    0x00080000, 0x00040000, 0x00020000, 0x00010000,
  937. X    0x00008000, 0x00004000, 0x00002000, 0x00001000,
  938. X    0x00000800, 0x00000400, 0x00000200, 0x00000100,
  939. X    0x00000080, 0x00000040, 0x00000020, 0x00000010,
  940. X    0x00000008, 0x00000004, 0x00000002, 0x00000001
  941. X  };
  942. X
  943. X#ifdef DEBUG
  944. X
  945. X/* For debugging */
  946. X
  947. Xpr_bits(a,n)
  948. X  unsigned long *a;
  949. X  unsigned long n;
  950. X  { unsigned long i,j,t,tmp;
  951. X    n/=8;
  952. X    for(i=0; i<n; i++)
  953. X      { tmp=0;
  954. X    for(j=0; j<8; j++)
  955. X      { t=8*i+j;
  956. X        tmp|=(a[t/24] & BITMASK(t % 24))?bytemask[j]:0;
  957. X      }
  958. X    (void)printf("%02x ",tmp);
  959. X      }
  960. X    printf(" ");
  961. X  }
  962. X
  963. Xstatic set_bits(v,b)
  964. X  unsigned long v;
  965. X  unsigned long *b;
  966. X  { unsigned long i;
  967. X    *b = 0;
  968. X    for(i=0; i<24; i++)
  969. X      if(v & longmask[8+i])
  970. X    *b |= BITMASK(i);
  971. X  }
  972. X
  973. X#endif
  974. X
  975. Xstatic unsigned long initialized = 0;
  976. X
  977. X/* lookup a 6 bit value in sbox */
  978. X
  979. X#define s_lookup(i,s) sbox[(i)][(((s)>>4) & 0x2)|((s) & 0x1)][((s)>>1) & 0xf];
  980. X
  981. X/* Generate the mk_keytab_table once in a program execution */
  982. X
  983. Xvoid init_des()
  984. X  { unsigned long tbl_long,bit_within_long,comes_from_bit;
  985. X    unsigned long bit,sg,j;
  986. X    unsigned long bit_within_byte,key_byte,byte_value;
  987. X    unsigned long round,mask;
  988. X
  989. X    bzero((char*)mk_keytab_table,sizeof mk_keytab_table);
  990. X    
  991. X    for(round=0; round<16; round++)
  992. X      for(bit=0; bit<48; bit++)
  993. X        { tbl_long        = bit / 24;
  994. X          bit_within_long = bit % 24;
  995. X
  996. X          /* from which bit in the key halves does it origin? */
  997. X          comes_from_bit = pc2[bit] - 1;
  998. X
  999. X          /* undo the rotation done before pc2 */
  1000. X          if(comes_from_bit>=28)
  1001. X            comes_from_bit =  28 + (comes_from_bit + totrot[round]) % 28;
  1002. X          else
  1003. X            comes_from_bit =       (comes_from_bit + totrot[round]) % 28;
  1004. X
  1005. X          /* undo the initial key half forming permutation */
  1006. X          comes_from_bit = pc1[comes_from_bit] - 1;
  1007. X
  1008. X          /* Now 'comes_from_bit' is the correct number (0..55) 
  1009. X             of the keybit from which the bit being traced
  1010. X             in key 'round' comes from
  1011. X          */
  1012. X          key_byte        =  comes_from_bit  / 8;
  1013. X          bit_within_byte = (comes_from_bit % 8)+1;
  1014. X
  1015. X          mask = bytemask[bit_within_byte];
  1016. X
  1017. X          for(byte_value=0; byte_value<128; byte_value++)
  1018. X            if(byte_value & mask)
  1019. X              mk_keytab_table[key_byte][round][tbl_long][byte_value] |= 
  1020. X        BITMASK(bit_within_long);
  1021. X        }
  1022. X
  1023. X    /* Now generate the table used to do an combined
  1024. X       32 bit permutation and e expansion
  1025. X
  1026. X       We use it because we have to permute 16384 32 bit
  1027. X       longs into 48 bit in order to initialize sb.
  1028. X
  1029. X       Looping 48 rounds per permutation becomes 
  1030. X       just too slow...
  1031. X
  1032. X    */
  1033. X
  1034. X    bzero((char*)eperm32tab,sizeof eperm32tab);
  1035. X    for(bit=0; bit<48; bit++)
  1036. X      { unsigned long mask1,comes_from;
  1037. X    
  1038. X        comes_from = perm32[eref[bit]-1]-1;
  1039. X        mask1      = bytemask[comes_from % 8];
  1040. X    
  1041. X        for(j=256; j--;)
  1042. X          if(j & mask1)
  1043. X            eperm32tab[comes_from/8][j][bit/24] |= BITMASK(bit % 24);
  1044. X      }
  1045. X    
  1046. X    /* Create the sb tables:
  1047. X
  1048. X       For each 12 bit segment of an 48 bit intermediate
  1049. X       result, the sb table precomputes the two 4 bit
  1050. X       values of the sbox lookups done with the two 6
  1051. X       bit halves, shifts them to their proper place,
  1052. X       sends them through perm32 and finally E expands
  1053. X       them so that they are ready for the next
  1054. X       DES round.
  1055. X
  1056. X       The value looked up is to be xored onto the
  1057. X       two 48 bit right halves.
  1058. X    */
  1059. X
  1060. X    for(sg=0; sg<4; sg++)
  1061. X      { unsigned long j1,j2;
  1062. X        unsigned long s1,s2;
  1063. X    
  1064. X        for(j1=0; j1<64; j1++)
  1065. X          { s1 = s_lookup(2*sg,j1);
  1066. X            for(j2=0; j2<64; j2++)
  1067. X              { unsigned long to_permute,inx;
  1068. X
  1069. X                s2         = s_lookup(2*sg+1,j2);
  1070. X                to_permute = ((s1<<4)  | s2) << (24-8*sg);
  1071. X                inx        = ((j1<<6)  | j2) << 1;
  1072. X
  1073. X                sb[sg][inx  ]  = eperm32tab[0][(to_permute >> 24) & 0xff][0];
  1074. X                sb[sg][inx+1]  = eperm32tab[0][(to_permute >> 24) & 0xff][1];
  1075. X  
  1076. X                sb[sg][inx  ] |= eperm32tab[1][(to_permute >> 16) & 0xff][0];
  1077. X                sb[sg][inx+1] |= eperm32tab[1][(to_permute >> 16) & 0xff][1];
  1078. X  
  1079. X                sb[sg][inx  ] |= eperm32tab[2][(to_permute >>  8) & 0xff][0];
  1080. X                sb[sg][inx+1] |= eperm32tab[2][(to_permute >>  8) & 0xff][1];
  1081. X                
  1082. X                sb[sg][inx  ] |= eperm32tab[3][(to_permute)       & 0xff][0];
  1083. X                sb[sg][inx+1] |= eperm32tab[3][(to_permute)       & 0xff][1];
  1084. X              }
  1085. X          }
  1086. X      }  
  1087. X    initialized++;
  1088. X  }
  1089. X
  1090. X/* Process the elements of the sb table permuting the
  1091. X   bits swapped in the expansion by the current salt.
  1092. X*/
  1093. X
  1094. Xvoid shuffle_sb(k, saltbits)
  1095. X  unsigned long *k, saltbits;
  1096. X  { int j, x;
  1097. X    for(j=4096; j--;) {
  1098. X      x = (k[0] ^ k[1]) & saltbits;
  1099. X      *k++ ^= x;
  1100. X      *k++ ^= x;
  1101. X    }
  1102. X  }
  1103. X
  1104. X/* Setup the unit for a new salt
  1105. X   Hopefully we'll not see a new salt in each crypt call.
  1106. X*/
  1107. X
  1108. Xstatic unsigned char current_salt[3]="&&"; /* invalid value */
  1109. Xstatic unsigned long oldsaltbits = 0;
  1110. X
  1111. Xvoid setup_salt(s)
  1112. X  char *s;
  1113. X  { unsigned long i,j,saltbits;
  1114. X
  1115. X    if(!initialized)
  1116. X      init_des();
  1117. X
  1118. X    if(s[0]==current_salt[0] && s[1]==current_salt[1])
  1119. X      return;
  1120. X    current_salt[0]=s[0]; current_salt[1]=s[1];
  1121. X
  1122. X    /* This is the only crypt change to DES:
  1123. X       entries are swapped in the expansion table
  1124. X       according to the bits set in the salt.
  1125. X    */
  1126. X
  1127. X    saltbits=0;
  1128. X    bcopy((char*)eref,(char*)disturbed_e,sizeof eref);
  1129. X    for(i=0; i<2; i++)
  1130. X      { long c=ascii_to_bin(s[i]);
  1131. X    if(c<0 || c>63)
  1132. X      c=0;
  1133. X        for(j=0; j<6; j++)
  1134. X          if((c>>j) & 0x1)
  1135. X            { disturbed_e[6*i+j   ]=eref[6*i+j+24];
  1136. X              disturbed_e[6*i+j+24]=eref[6*i+j   ];
  1137. X          saltbits |= BITMASK(6*i+j);
  1138. X            }
  1139. X      }
  1140. X
  1141. X    /* Permute the sb table values
  1142. X       to reflect the changed e
  1143. X       selection table
  1144. X    */
  1145. X
  1146. X    shuffle_sb(sb0, oldsaltbits ^ saltbits); 
  1147. X    shuffle_sb(sb1, oldsaltbits ^ saltbits);
  1148. X    shuffle_sb(sb2, oldsaltbits ^ saltbits);
  1149. X    shuffle_sb(sb3, oldsaltbits ^ saltbits);
  1150. X
  1151. X    oldsaltbits = saltbits;
  1152. X
  1153. X    /* Create an inverse matrix for disturbed_e telling
  1154. X       where to plug out bits if undoing disturbed_e
  1155. X    */
  1156. X
  1157. X    for(i=48; i--;)
  1158. X      { e_inverse[disturbed_e[i]-1   ] = i;
  1159. X    e_inverse[disturbed_e[i]-1+32] = i+48;
  1160. X      }
  1161. X
  1162. X    /* create efp: the matrix used to
  1163. X       undo the E expansion and effect final permutation
  1164. X    */
  1165. X
  1166. X    bzero((char*)efp,sizeof efp);
  1167. X    for(i=0; i<64; i++)
  1168. X      { unsigned long o_bit,o_long;
  1169. X        unsigned long word_value,mask1,mask2,comes_from_f_bit,comes_from_e_bit;
  1170. X        unsigned long comes_from_word,bit_within_word;
  1171. X
  1172. X    /* See where bit i belongs in the two 32 bit long's */
  1173. X    o_long = i / 32; /* 0..1  */
  1174. X    o_bit  = i % 32; /* 0..31 */
  1175. X
  1176. X    /* And find a bit in the e permutated value setting this bit.
  1177. X
  1178. X       Note: the e selection may have selected the same bit several
  1179. X       times. By the initialization of e_inverse, we only look
  1180. X       for one specific instance.
  1181. X    */
  1182. X        comes_from_f_bit = final_perm[i]-1;             /* 0..63 */
  1183. X    comes_from_e_bit = e_inverse[comes_from_f_bit]; /* 0..95 */
  1184. X        comes_from_word  = comes_from_e_bit / 6;        /* 0..15 */
  1185. X        bit_within_word  = comes_from_e_bit % 6;        /* 0..5  */
  1186. X
  1187. X    mask1 = longmask[bit_within_word+26];
  1188. X    mask2 = longmask[o_bit];
  1189. X
  1190. X        for(word_value=64; word_value--;)
  1191. X          if(word_value & mask1)
  1192. X            efp[comes_from_word][word_value][o_long] |= mask2;
  1193. X
  1194. X      }
  1195. X
  1196. X  }
  1197. X
  1198. X/* Generate the key table before running the 25 DES rounds */
  1199. X
  1200. Xvoid mk_keytab(key)
  1201. X  char *key;
  1202. X  { unsigned long i,j;
  1203. X    unsigned long *k,*mkt;
  1204. X    char t;
  1205. X
  1206. X    bzero((char*)keytab, sizeof keytab);
  1207. X    mkt = &mk_keytab_table[0][0][0][0];
  1208. X
  1209. X    for(i=0; (t=(*key++) & 0x7f) && i<8; i++)
  1210. X      for(j=0,k = &keytab[0][0]; j<16; j++)
  1211. X        { *k++ |= mkt[t]; mkt += 128;
  1212. X          *k++ |= mkt[t]; mkt += 128;
  1213. X        }
  1214. X    for(; i<8; i++)
  1215. X      for(j=0,k = &keytab[0][0]; j<16; j++)
  1216. X        { *k++ |= mkt[0]; mkt += 128;
  1217. X          *k++ |= mkt[0]; mkt += 128;
  1218. X        }
  1219. X  }
  1220. X
  1221. X/* Do final permutations and convert to ASCII */
  1222. X
  1223. Xchar *output_conversion(l1,l2,r1,r2,salt)
  1224. X  unsigned long l1,l2,r1,r2;
  1225. X  char *salt;
  1226. X  { static char outbuf[14];
  1227. X    unsigned long i;
  1228. X    unsigned long s,v1,v2;
  1229. X
  1230. X    /* Unfortunately we've done an extra E
  1231. X       expansion -- undo it at the same time.
  1232. X    */
  1233. X
  1234. X    v1=v2=0; l1 >>= 3; l2 >>= 3; r1 >>= 3; r2 >>= 3;
  1235. X
  1236. X    v1 |= efp[ 3][ l1       & 0x3f][0]; v2 |= efp[ 3][ l1 & 0x3f][1];
  1237. X    v1 |= efp[ 2][(l1>>=6)  & 0x3f][0]; v2 |= efp[ 2][ l1 & 0x3f][1];
  1238. X    v1 |= efp[ 1][(l1>>=10) & 0x3f][0]; v2 |= efp[ 1][ l1 & 0x3f][1];
  1239. X    v1 |= efp[ 0][(l1>>=6)  & 0x3f][0]; v2 |= efp[ 0][ l1 & 0x3f][1];
  1240. X
  1241. X    v1 |= efp[ 7][ l2       & 0x3f][0]; v2 |= efp[ 7][ l2 & 0x3f][1];
  1242. X    v1 |= efp[ 6][(l2>>=6)  & 0x3f][0]; v2 |= efp[ 6][ l2 & 0x3f][1];
  1243. X    v1 |= efp[ 5][(l2>>=10) & 0x3f][0]; v2 |= efp[ 5][ l2 & 0x3f][1];
  1244. X    v1 |= efp[ 4][(l2>>=6)  & 0x3f][0]; v2 |= efp[ 4][ l2 & 0x3f][1];
  1245. X
  1246. X    v1 |= efp[11][ r1       & 0x3f][0]; v2 |= efp[11][ r1 & 0x3f][1];
  1247. X    v1 |= efp[10][(r1>>=6)  & 0x3f][0]; v2 |= efp[10][ r1 & 0x3f][1];
  1248. X    v1 |= efp[ 9][(r1>>=10) & 0x3f][0]; v2 |= efp[ 9][ r1 & 0x3f][1];
  1249. X    v1 |= efp[ 8][(r1>>=6)  & 0x3f][0]; v2 |= efp[ 8][ r1 & 0x3f][1];
  1250. X
  1251. X    v1 |= efp[15][ r2       & 0x3f][0]; v2 |= efp[15][ r2 & 0x3f][1];
  1252. X    v1 |= efp[14][(r2>>=6)  & 0x3f][0]; v2 |= efp[14][ r2 & 0x3f][1];
  1253. X    v1 |= efp[13][(r2>>=10) & 0x3f][0]; v2 |= efp[13][ r2 & 0x3f][1];
  1254. X    v1 |= efp[12][(r2>>=6)  & 0x3f][0]; v2 |= efp[12][ r2 & 0x3f][1];
  1255. X    
  1256. X    outbuf[0] = salt[0];
  1257. X    outbuf[1] = salt[1] ? salt[1] : salt[0];
  1258. X
  1259. X    for(i=0; i<5; i++)
  1260. X      outbuf[i+2] = bin_to_ascii((v1>>(26-6*i)) & 0x3f);
  1261. X
  1262. X    s  = (v2 & 0xf) << 2;             /* Save the rightmost 4 bit a moment */
  1263. X    v2 = (v2>>2) | ((v1 & 0x3)<<30);  /* Shift two bits of v1 onto v2      */
  1264. X
  1265. X    for(i=5; i<10; i++)
  1266. X      outbuf[i+2] = bin_to_ascii((v2>>(56-6*i)) & 0x3f);
  1267. X
  1268. X    outbuf[12] = bin_to_ascii(s);
  1269. X    outbuf[13] = 0;
  1270. X
  1271. X    return outbuf;
  1272. X  }
  1273. X
  1274. Xchar *crypt();
  1275. X
  1276. X/* Stub to provide fcrypt compatibility */
  1277. X   
  1278. Xchar *fcrypt(key, salt)
  1279. X  char *key;
  1280. X  char *salt;
  1281. X  { return crypt(key, salt);
  1282. X  }
  1283. X
  1284. END_OF_FILE
  1285.   if test 18287 -ne `wc -c <'crypt_util.c'`; then
  1286.     echo shar: \"'crypt_util.c'\" unpacked with wrong size!
  1287.   fi
  1288.   # end of 'crypt_util.c'
  1289. fi
  1290. echo shar: End of archive 1 \(of 2\).
  1291. cp /dev/null ark1isdone
  1292. MISSING=""
  1293. for I in 1 2 ; do
  1294.     if test ! -f ark${I}isdone ; then
  1295.     MISSING="${MISSING} ${I}"
  1296.     fi
  1297. done
  1298. if test "${MISSING}" = "" ; then
  1299.     echo You have unpacked both archives.
  1300.     rm -f ark[1-9]isdone
  1301. else
  1302.     echo You still must unpack the following archives:
  1303.     echo "        " ${MISSING}
  1304. fi
  1305. exit 0
  1306. exit 0 # Just in case...
  1307. -- 
  1308. Kent Landfield                   INTERNET: kent@sparky.IMD.Sterling.COM
  1309. Sterling Software, IMD           UUCP:     uunet!sparky!kent
  1310. Phone:    (402) 291-8300         FAX:      (402) 291-4362
  1311. Please send comp.sources.misc-related mail to kent@uunet.uu.net.
  1312.